home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / game / shoot / ADoomPPC_src.lha / ADoomPPC_src / amiga_macros.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-18  |  429 b   |  30 lines

  1. #ifndef _AMIGA_MACROS_H
  2. #define _AMIGA_MACROS_H
  3.  
  4. /*
  5.  *  amiga_macros.h - small macros for compiler specific stuff
  6.  *  This file is public domain.
  7.  */
  8.  
  9. #include <exec/types.h>
  10.  
  11. /*
  12.  * macros for function definitions and declarations
  13.  */
  14.  
  15. #if defined(__VBCC__)
  16. #define INLINE
  17.  
  18. #elif defined(__SASC)
  19. #define INLINE __inline
  20.  
  21. #elif defined(__GNUC__)
  22. #define INLINE __inline
  23.  
  24. #else
  25. #define INLINE
  26.  
  27. #endif
  28.  
  29. #endif /* _AMIGA_MACROS_H */
  30.